home *** CD-ROM | disk | FTP | other *** search
- function showWindow()
- {
- _visible = true;
- }
- function hideWindow()
- {
- _visible = false;
- gotoAndStop(1);
- }
- userInfo = SharedObject.getLocal("uInfo");
- if(userInfo.data.name != undefined)
- {
- nametext = userInfo.data.name;
- }
- if(userInfo.data.email1 != undefined)
- {
- email1text = userInfo.data.email1;
- }
- if(userInfo.data.email2 != undefined)
- {
- email2text = userInfo.data.email2;
- }
- hideWindow();
- stop();
-